home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / mcu / cluster.arc / OUTPUT_C.CHG < prev    next >
Text File  |  1989-05-24  |  2KB  |  44 lines

  1. FILE:          output_c.chg     
  2. PURPOSE:       To document the changes made to OUTPUT.C to increase the field
  3.                width used for symbols in the symbol table and cross reference
  4.                output format.
  5.  
  6. DESCRIPTION:
  7.  
  8.   In the assembler symbols may be up to 16 characters in length.  I tend to 
  9. create symbols of approximately 12-14 characters long.  Sometimes longer and 
  10. sometimes shorter.  The cross reference and the symbol table output format only 
  11. reserves 10 characters for the symbol.  If the symbol is longer the output will 
  12. be hard to read.  I changed 2 lines in the file OUTPUT.C to make the output 
  13. reserve 16 characters for the symbol instead of 10.  This file describes the 
  14. two lines changed below.
  15.  
  16.   See also the bug fix made to file FFWD.C described in the file FFWD_C.CHG, 
  17. and the change to allow semicolon's to be used as comment characters to file 
  18. AS.C described in the file AS_C.CHG.
  19.  
  20.   If you have any questions for me, or if you would like me to upload the 
  21. complete source and executable files that include this change, I can be reached 
  22. at 801-778-4410.  Ask for Bruce Olney.
  23.  
  24.  
  25. DESCRIPTION OF CHANGES:
  26.  
  27.      Line 11 was changed from this:
  28.  
  29.         printf ("%-16s %04x\n",ptr->name,ptr->def);
  30.  
  31.      To this:
  32.  
  33.         printf ("%-10s %04x\n",ptr->name,ptr->def);
  34.  
  35.  
  36.  
  37.      Line 27 was changed from this:
  38.  
  39.         printf ("%-16s %04x *",point->name,point->def);
  40.  
  41.      To this:
  42.  
  43.         printf ("%-10s %04x *",point->name,point->def);
  44.